diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-01 04:31:01 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-01 04:31:01 +0000 |
| commit | 933589898bb26c1585b0585407e935f10e3be2ab (patch) | |
| tree | 809d6d9a10052e3be091bf4a9c521f05df5c3559 /app/[lng]/evcp/(evcp)/items/page.tsx | |
| parent | a9980dd9f0f53c9c90937947d4514c921ba05f7f (diff) | |
(최겸) 인포메이선 컴포넌트 테이블 별 추가 완료
Diffstat (limited to 'app/[lng]/evcp/(evcp)/items/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/items/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/items/page.tsx b/app/[lng]/evcp/(evcp)/items/page.tsx index 0c44bf0a..c4e00557 100644 --- a/app/[lng]/evcp/(evcp)/items/page.tsx +++ b/app/[lng]/evcp/(evcp)/items/page.tsx @@ -9,7 +9,7 @@ import { searchParamsCache } from "@/lib/items/validations" import { getItems } from "@/lib/items/service" import { ItemsTable } from "@/lib/items/table/items-table" import { ViewModeToggle } from "@/components/data-table/view-mode-toggle" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> } @@ -34,9 +34,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 패키지 정보 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 패키지 정보 + </h2> + <InformationButton pageCode="evcp/items" /> + </div> <p className="text-muted-foreground"> S-EDP로부터 수신된 패키지 정보이며 PR 전 입찰, 견적에 사용되며 벤더 데이터, 문서와 연결됩니다. </p> |
